home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / TinyGL / ami / content / ad709 / tinygl / src / arrays.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-08-15  |  229 b   |  14 lines

  1. #ifndef _arrays_h
  2. #define _arrays_h
  3.  
  4. #include <assert.h>
  5. #include <stdio.h>
  6. #include "zgl.h"
  7.  
  8. #define VERTEX_ARRAY    0x0001
  9. #define COLOR_ARRAY        0x0002
  10. #define NORMAL_ARRAY    0x0004
  11. #define TEXCOORD_ARRAY    0x0008
  12.  
  13. #endif
  14.